#	 Fall 2022 Lab 10a
#	 Nicholas Graziani
#	 lab section 007
# 	 11.13.2022
#   Create the flag of Ireland using a make file


lab10a: fillImageArray.c writeHeader.c getHeader.c mainDriver.c writePixels.c defs.h

		gcc -Wall -o lab10a fillImageArray.c writeHeader.c getHeader.c mainDriver.c writePixels.c defs.h


# run has a dependency: lab10a
#lab10a comes from the first line, the compilation
run: lab10a
		./lab10a < Disney.pnm

clean: 
		rm lab10a
		rm -f output.txt
